home *** CD-ROM | disk | FTP | other *** search
- #!/bin/csh
-
- # Env variable for WorkShop directory
- setenv WSDIR /CDROM/demos/WorkShop
-
- # Set path for product installation
- setenv PRODUCT_PATH $WSDIR/WorkShop
-
- # Indicate product to be installed
- echo "Installing WorkShop..."
-
- # If products exists in the history database, remove history
- if (-e /usr/lib/inst/WorkShop) /bin/rm -f /usr/lib/inst/WorkShop
- if (-e /usr/lib/inst/CaseVision) /bin/rm -f /usr/lib/inst/CaseVision
-
- # Install product
- /usr/sbin/inst -af $PRODUCT_PATH
-
- # Install license
- if (-e /usr/lib/inst/license) /bin/rm -f /usr/lib/inst/license
- setenv PRODUCT_PATH $WSDIR/license
- /usr/sbin/inst -af $PRODUCT_PATH
-
- # Put demo test file in "rantest" directory
- /bin/cp -r $WSDIR/test0000 /usr/demos/WorkShop/rantest
-
-
-